home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 21
/
Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso
/
Aminet
/
gfx
/
misc
/
PicSort.lha
/
PicSort
/
TH_IFX.rexx
< prev
Wrap
OS/2 REXX Batch file
|
1997-08-09
|
771b
|
28 lines
/* generate preview images via ImageFX*/
options results
PARSE ARG source dest twidth theight dummy
path = Pragma("D")
picsize = 120
ADDRESS "IMAGEFX.1"
LoadBuffer source FORCE
if RC = 0 THEN DO
Getmain
width = SUBWORD(result,2,1)
height = SUBWORD(result,3,1)
faktor = picsize/max(width,height)
newwidth = min(TRUNC(width * faktor),twidth)
newheight = min(TRUNC(height * faktor),theight)
scale newwidth newheight
SaveBufferAs JPEG dest FORCE 85 PROGRESSIVE
END